home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bugzilla_detect.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(11462);
  11.  script_version ("$Revision: 1.5 $");
  12.  
  13.  
  14.  name["english"] = "Bugzilla Detection";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. This script detects whether the bugzilla bug tracking
  20. system is running on the remote host, and extracts its 
  21. version if it is.
  22.  
  23. Risk factor : None";
  24.  
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the presence of bugzilla";
  31.  
  32.  script_summary(english:summary["english"], francais:summary["francais"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  38.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "no404.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54.  
  55. port = get_http_port(default:80);
  56.  
  57. if(!get_port_state(port))exit(0);
  58.  
  59. foreach d (make_list("/bugs", "/bugzilla", cgi_dirs()))
  60. {
  61.  req = http_get(item:string(d, "/query.cgi"), port:port);
  62.  res = http_keepalive_send_recv(port:port, data:req);
  63.  if( res == NULL ) exit(0);
  64.  res = egrep(pattern:"Bugzilla version", string:res, icase:TRUE);
  65.  if( res )
  66.  {
  67.   vers = ereg_replace(pattern:".*Bugzilla version ([0-9.]*).*", string:res, replace:"\1", icase:TRUE);
  68.   set_kb_item(name:string("www/", port, "/bugzilla/version"),
  69.             value:vers);
  70.           
  71.   rep = "The remote host is running bugzilla " + vers + " under /" + d;
  72.   security_note(port:port, data:rep);
  73.   exit(0);     
  74.  }
  75.